2005-05-16 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up
+ and GDK_Page_Down twice. (#168333, Hazael Maldonado Torres)
+
* gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if
- the entry is not editable. (#304171,Nikos Kouremenos)
+ the entry is not editable. (#304171, Nikos Kouremenos)
* gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor):
Make sure the action of the button and the dialog are in sync,
2005-05-16 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up
+ and GDK_Page_Down twice. (#168333, Hazael Maldonado Torres)
+
* gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if
- the entry is not editable. (#304171,Nikos Kouremenos)
+ the entry is not editable. (#304171, Nikos Kouremenos)
* gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor):
Make sure the action of the button and the dialog are in sync,
2005-05-16 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkscale.c (gtk_scale_class_init): Don't bind GDK_Page_Up
+ and GDK_Page_Down twice. (#168333, Hazael Maldonado Torres)
+
* gtk/gtkentry.c (cursor_blinks): Don't blink the cursor if
- the entry is not editable. (#304171,Nikos Kouremenos)
+ the entry is not editable. (#304171, Nikos Kouremenos)
* gtk/gtkfilechooserbutton.c (gtk_file_chooser_button_constructor):
Make sure the action of the button and the dialog are in sync,
add_slider_binding (binding_set, GDK_KP_Down, GDK_CONTROL_MASK,
GTK_SCROLL_PAGE_DOWN);
- add_slider_binding (binding_set, GDK_Page_Up, 0,
+ add_slider_binding (binding_set, GDK_Page_Up, GDK_CONTROL_MASK,
GTK_SCROLL_PAGE_LEFT);
- add_slider_binding (binding_set, GDK_KP_Page_Up, 0,
+ add_slider_binding (binding_set, GDK_KP_Page_Up, GDK_CONTROL_MASK,
GTK_SCROLL_PAGE_LEFT);
add_slider_binding (binding_set, GDK_Page_Up, 0,
add_slider_binding (binding_set, GDK_KP_Page_Up, 0,
GTK_SCROLL_PAGE_UP);
- add_slider_binding (binding_set, GDK_Page_Down, 0,
+ add_slider_binding (binding_set, GDK_Page_Down, GDK_CONTROL_MASK,
GTK_SCROLL_PAGE_RIGHT);
- add_slider_binding (binding_set, GDK_KP_Page_Down, 0,
+ add_slider_binding (binding_set, GDK_KP_Page_Down, GDK_CONTROL_MASK,
GTK_SCROLL_PAGE_RIGHT);
add_slider_binding (binding_set, GDK_Page_Down, 0,